home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960209-19960425 / 000170_news@columbia.edu _Fri Mar 8 03:20:50 1996.msg < prev    next >
Internet Message Format  |  1996-05-13  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id DAA11897 for <kermit.misc@watsun>; Fri, 8 Mar 1996 03:20:49 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id DAA05777 for kermit.misc@watsun; Fri, 8 Mar 1996 03:20:45 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!elroy.jpl.nasa.gov!swrinde!newsfeed.internetmci.com!news.hughes.net!rcp6.elan.af.mil!newshub.nosc.mil!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Auto Delete Files after sending in kermit
  8. Message-ID: <1996Mar5.181149.75965@cc.usu.edu>
  9. Date: 5 Mar 96 18:11:49 MDT
  10. References: <826038248.2742@skiving.demon.co.uk>
  11. Organization: Utah State University
  12. Lines: 22
  13.  
  14. In article <826038248.2742@skiving.demon.co.uk>, Dave Cook <SKIVING.demon.co.uk> writes:
  15. > Probably an easy answer to this one but I cant find it, how do I get
  16. > Kermit to remove files as it sends them. If modem drops the connection 
  17. > when executing 'send *.snd' I dont know how many where sent, if any, and 
  18. > how many I need to resend. Unfortunately I have to turn the display off so 
  19. > cant watch the fancy screen of bytes transferred.
  20. > In Anticipation of a kermit genious
  21. ----------
  22.     Please don't stop breathing in the meanwhile.
  23.     Kermit doesn't gratituously delete files. You have to delete files,
  24. if you so desire. MSK does provide a transaction log which describes the
  25. state of files transferred; turn on by LOG TRANSACTION <optional filename,
  26. else default is TRANSACT.LOG in the current directory>. You can write a
  27. Kermit script to parse the log (it is simple ASCII).
  28.     If you can arrange it then the better approach is to tell the other 
  29. end to reject files which already exist: SET FILE COLLISION NO-SUPERSEDE
  30. or whatever the syntax is of that Kermit, and also SET FILE INCOMPLETE
  31. DISCARD. That way partial transfers are cleaned out on the far end and
  32. resending files will cause copies to be rejected immediately (but each
  33. candidate file is started anyway).
  34.     Joe D.